Add missing semicolon at the end of a statement.
authoroliskoli <oliskoli>
Wed, 26 Jul 2006 20:05:50 +0000 (20:05 +0000)
committeroliskoli <oliskoli>
Wed, 26 Jul 2006 20:05:50 +0000 (20:05 +0000)
gbfile.c

index 147a4d4de1ce41b4580a6be066932da033959ac9..bbca7a24ed13fbc6ca584a8a4ec28a81527732ed 100644 (file)
--- a/gbfile.c
+++ b/gbfile.c
@@ -549,7 +549,7 @@ gbfputflt(const float f, gbfile *file)
 int 
 gbfputcstr(const char *s, gbfile *file)
 {
-       return gbfwrite(s, 1, strlen(s) + 1, file)
+       return gbfwrite(s, 1, strlen(s) + 1, file);
 }
 
 int